This causes a hickup in the new css node machinery, causing
the default-value test to fail.
{
GtkToolItemGroup *group = GTK_TOOL_ITEM_GROUP (object);
- if (group->priv->children)
- {
- g_list_free (group->priv->children);
- group->priv->children = NULL;
- }
+ g_list_free (group->priv->children);
G_OBJECT_CLASS (gtk_tool_item_group_parent_class)->finalize (object);
}
}
g_clear_object (&priv->settings);
+ gtk_widget_destroy (priv->header);
+ g_clear_object (&priv->header);
G_OBJECT_CLASS (gtk_tool_item_group_parent_class)->dispose (object);
}